home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / Tool Chest / Interfaces / UniversalInterfaces 2.1B1 / AIncludes / OSAComp.a < prev    next >
Encoding:
Text File  |  1995-04-18  |  1.8 KB  |  70 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        OSAComp.a
  3. ;
  4. ;    Contains:    AppleScript Component Implementor's Interfaces.
  5. ;
  6. ;    Version:    Technology:    AppleScript 1.1
  7. ;                Package:    Universal Interfaces 2.1ß1 in “MPW Prerelease” on ETO #17
  8. ;
  9. ;    Copyright:    © 1984-1995 by Apple Computer, Inc.
  10. ;                All rights reserved.
  11. ;
  12. ;    Bugs?:        If you find a problem with this file, use the Apple Bug Reporter
  13. ;                stack.  Include the file and version information (from above)
  14. ;                in the problem description and send to:
  15. ;                    Internet:    apple.bugs@applelink.apple.com
  16. ;                    AppleLink:    APPLE.BUGS
  17. ;
  18. ;
  19.  
  20.     IF &TYPE('__OSACOMP__') = 'UNDEFINED' THEN
  21. __OSACOMP__ SET 1
  22.  
  23.  
  24.     IF &TYPE('__APPLEEVENTS__') = 'UNDEFINED' THEN
  25.     include 'AppleEvents.a'
  26.     ENDIF
  27. ;        include 'Errors.a'                                            ;
  28. ;            include 'ConditionalMacros.a'                            ;
  29. ;        include 'Types.a'                                            ;
  30. ;        include 'Memory.a'                                            ;
  31. ;            include 'MixedMode.a'                                    ;
  32. ;        include 'OSUtils.a'                                        ;
  33. ;        include 'Events.a'                                            ;
  34. ;            include 'Quickdraw.a'                                    ;
  35. ;                include 'QuickdrawText.a'                            ;
  36. ;        include 'EPPC.a'                                            ;
  37. ;            include 'AppleTalk.a'                                    ;
  38. ;            include 'Files.a'                                        ;
  39. ;            include 'PPCToolbox.a'                                    ;
  40. ;            include 'Processes.a'                                    ;
  41. ;        include 'Notification.a'                                    ;
  42.  
  43.     IF &TYPE('__OSA__') = 'UNDEFINED' THEN
  44.     include 'OSA.a'
  45.     ENDIF
  46. ;        include 'AEObjects.a'                                        ;
  47. ;        include 'Components.a'                                        ;
  48. ;
  49. ; pascal OSErr OSAGetStorageType(Handle scriptData, DescType *dscType)
  50. ;
  51.     IF GENERATINGCFM THEN
  52.         IMPORT_CFM_FUNCTION    OSAGetStorageType
  53.     ENDIF
  54.  
  55. ;
  56. ; pascal OSErr OSAAddStorageType(Handle scriptData, DescType dscType)
  57. ;
  58.     IF GENERATINGCFM THEN
  59.         IMPORT_CFM_FUNCTION    OSAAddStorageType
  60.     ENDIF
  61.  
  62. ;
  63. ; pascal OSErr OSARemoveStorageType(Handle scriptData)
  64. ;
  65.     IF GENERATINGCFM THEN
  66.         IMPORT_CFM_FUNCTION    OSARemoveStorageType
  67.     ENDIF
  68.  
  69.     ENDIF ; __OSACOMP__
  70.